/***** Template styling *****/
/*
/* Addiitonal styling for the site homepage
/*
---------------------------------------------------------------------------------------------------- */

/* Styling for subscribe modal on home page */
.modal-title {
    font-size: 110%;
}
#subscribeModal .modal-dialog{
    width: 600px;
    max-width: 100%;
}
.modal-content .subscribe-modal {
    height: 350px;
}

/* Styling for subscribe modal forms/inputs  */
.form-wrapper h2.form-headline {
    font-size: 3rem;
    margin-bottom: 1rem;
    line-height: 1em;
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: #fff;
  }
  .form-wrapper p.form-subheadline {
    text-transform: uppercase;
  }
  .form-wrapper h2.form-headline strong {
    color: #ffea00;
  }
  .form-wrapper p:last-child {
    font-size: 1.6rem;
  }
  .form-wrap form {
    max-width: 102rem;
    margin: 1rem auto 3rem;
  }
  .form-wrap form > div {
    width: 23.333%;
  }
  .form-wrap form .form-field {
    padding-right: 1rem;
  }
  .form-wrap form .form-field input {
    width: 100%;
    padding: 1rem 0.5rem;
    border: none;
    outline: none;
  }
  .form-wrap form .btn-submit button {
    width: 100%;
    font-weight: bold;
    text-transform: uppercase;
    color: #fff;
    padding: 0.5rem 1rem;
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
    font-size: 1.7rem;
  }
  .form-wrap form .btn-submit button:hover {
    background-color: #fff;
  }
 
  /* Styling for optin button on home page banner  */
  .header-banner-section .btn {
    border-radius: 2px;
    padding: 9px 15px;
    font-size: 16px;
    letter-spacing: 0.2px;
    cursor: pointer;
    color: #fff;
    text-transform: uppercase;
  }

 
  /* Ensures that header optin button does not overlap banner image on mobile and other skinny screens */ 
  @media only screen and (max-width: 767px) {
    .header-banner-section .btn {
        margin-bottom: 6rem;
    }
  } 
  
  @media only screen and (max-width: 375px) {
    .header-banner-section .btn {
        margin-bottom: 1.5rem;
    }
  }

  